home *** CD-ROM | disk | FTP | other *** search
/ ADA Programming Guide / ADA Programming Guide.iso / ada_gwu / 4.h < prev    next >
C/C++ Source or Header  |  1996-01-30  |  867b  |  41 lines

  1. /*
  2.  * Copyright (C) 1985-1992  New York University
  3.  * 
  4.  * This file is part of the Ada/Ed-C system.  See the Ada/Ed README file for
  5.  * warranty (none) and distribution info and also the GNU General Public
  6.  * License for more details.
  7.  
  8.  */
  9. #ifndef _4_h
  10. #define _4_h
  11.  
  12. #include "hdr.h"
  13. #include "libhdr.h"
  14. #include "vars.h"
  15.  
  16. /* TODO;
  17.  
  18.  
  19.     REVIEW VALID_OP_TYPES  CAREFULLY!!
  20.  
  21.     slide_context (is global integer) 
  22.     may_slide (is local, copy of slide_context
  23.  
  24.  Need to clarify attribute encoding, not strings ("LAST"), not
  25.  symbols (symbol_last), and not even Rosen codes, but rather full
  26.  set of integer codes covering all cases, and including Rosen codes
  27.  as subset.
  28.  The N_VAL(node) field of node has attribute name, often (but not 
  29. always)
  30.  interpreted as a string.
  31.  */
  32.  
  33.  
  34. typedef struct Triplet {
  35.     int   inf;
  36.     int   sup;
  37.     Node  choice_node;
  38.     }Triplet;
  39.  
  40. #endif
  41.